home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Web Server / PHP.EXE / pear / DB / tests / pgsql / 007.phpt < prev    next >
Encoding:
Text File  |  2000-12-08  |  286 b   |  14 lines

  1. --TEST--
  2. DB_pgsql::errorNative test
  3. --SKIPIF--
  4. <?php include("skipif.inc"); ?>
  5. --FILE--
  6. <?php
  7. require_once "DB.php";
  8. include("mktable.inc");
  9. $dbh->query("syntax error please");
  10. print $dbh->errorNative() . "\n";
  11. ?>
  12. --EXPECT--
  13. ERROR:  parser: parse error at or near "syntax"
  14.